home *** CD-ROM | disk | FTP | other *** search
/ Sound Fx / Sound Fx.iso / Software / UNZIPED / MPW181-5 / _SETUP.1 / obuffer.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  1997-04-19  |  595 b   |  42 lines

  1. /* Obuffer.cpp
  2.  
  3.    Includes the correct implementation of Obuffer for the
  4.    operating system you are compiling for.
  5.  
  6.    Last edit : 04/19/97 */
  7.  
  8. #include "fileobuf.cc"
  9.  
  10. #ifdef Indigo
  11. #include "indigo_obuffer.cc"
  12. #endif
  13.  
  14. #ifdef SPARC
  15. #include "sparc_obuffer.cc"
  16. #endif
  17.  
  18. #ifdef HPUX
  19. #include "hpux_obuffer.cc"
  20. #endif
  21.  
  22. #ifdef LINUX
  23. #include "linux_obuffer.cc"
  24. #endif
  25.  
  26. #ifdef NeXT
  27. #include "NeXT_obuffer.cc"
  28. #endif
  29.  
  30. #ifdef AIX
  31. #include "aix_obuffer.cc"
  32. #endif
  33.  
  34. #ifdef __WIN32__
  35. #include "mci_obuf.cpp"
  36. #endif
  37.  
  38. #ifdef BEOS
  39. #include "beos_obuffer.cc"
  40. #endif
  41.  
  42.